home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / misc / gs261src.zip / dparam.h < prev    next >
C/C++ Source or Header  |  1993-05-13  |  2KB  |  39 lines

  1. /* Copyright (C) 1992 Aladdin Enterprises.  All rights reserved.
  2.  
  3. This file is part of Ghostscript.
  4.  
  5. Ghostscript is distributed in the hope that it will be useful, but
  6. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  7. to anyone for the consequences of using it or for whether it serves any
  8. particular purpose or works at all, unless he says so in writing.  Refer
  9. to the Ghostscript General Public License for full details.
  10.  
  11. Everyone is granted permission to copy, modify and redistribute
  12. Ghostscript, but only under the conditions described in the Ghostscript
  13. General Public License.  A copy of this license is supposed to have been
  14. given to you along with Ghostscript so you can know your rights and
  15. responsibilities.  It should be in a file named COPYING.  Among other
  16. things, the copyright notice and this notice must be preserved on all
  17. copies.  */
  18.  
  19. /* dparam.h */
  20. /* Interface to idparam.c */
  21.  
  22. #ifndef gs_matrix_DEFINED
  23. #  define gs_matrix_DEFINED
  24. typedef struct gs_matrix_s gs_matrix;
  25. #endif
  26.  
  27. int dict_bool_param(P4(const ref *pdict, const ref *pname,
  28.                int defaultval, int *pvalue));
  29. int dict_int_param(P6(const ref *pdict, const ref *pname,
  30.               int minval, int maxval, int defaultval, int *pvalue));
  31. int dict_float_param(P4(const ref *pdict, const ref *pname,
  32.             floatp defaultval, float *pvalue));
  33. int dict_int_array_param(P4(const ref *pdict, const ref *pname,
  34.                 uint maxlen, int *ivec));
  35. int dict_float_array_param(P5(const ref *pdict, const ref *pname,
  36.                   uint maxlen, float *fvec, float *defaultvec));
  37. int dict_matrix_param(P3(const ref *pdict, const ref *pname,
  38.              gs_matrix *pmat));
  39.